1
|
|
|
// ---------------------------------------------------------------------------- |
2
|
|
|
// markItUp! |
3
|
|
|
// ---------------------------------------------------------------------------- |
4
|
|
|
// Copyright (C) 2008 Jay Salvat |
5
|
|
|
// http://markitup.jaysalvat.com/ |
6
|
|
|
// ---------------------------------------------------------------------------- |
7
|
|
|
// Html tags |
8
|
|
|
// http://en.wikipedia.org/wiki/html |
9
|
|
|
// ---------------------------------------------------------------------------- |
10
|
|
|
// Basic set. Feel free to add more tags |
11
|
|
|
// ---------------------------------------------------------------------------- |
12
|
|
|
mySettings = { |
|
|
|
|
13
|
|
|
onShiftEnter: {keepDefault:false, replaceWith:'<br />\n'}, |
14
|
|
|
onCtrlEnter: {keepDefault:false, openWith:'\n<p>', closeWith:'</p>'}, |
15
|
|
|
onTab: {keepDefault:false, replaceWith:' '}, |
16
|
|
|
markupSet: [ |
17
|
|
|
{name:'Bold', key:'B', openWith:'(!(<strong>|!|<b>)!)', closeWith:'(!(</strong>|!|</b>)!)' }, |
18
|
|
|
{name:'Italic', key:'I', openWith:'(!(<em>|!|<i>)!)', closeWith:'(!(</em>|!|</i>)!)' }, |
19
|
|
|
{name:'Stroke through', key:'S', openWith:'<del>', closeWith:'</del>' }, |
20
|
|
|
{separator:'---------------' }, |
21
|
|
|
{name:'Picture', key:'P', replaceWith:'<img src="[![Source:!:http://]!]" alt="[![Alternative text]!]" />' }, |
22
|
|
|
{name:'Link', key:'L', openWith:'<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' }, |
23
|
|
|
{separator:'---------------' }, |
24
|
|
|
{name:'Clean', className:'clean', replaceWith:function(markitup) { return markitup.selection.replace(/<(.*?)>/g, "") } }, |
25
|
|
|
{name:'Preview', className:'preview', call:'preview'} |
26
|
|
|
] |
27
|
|
|
} |